home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / mapper31.zip / REQD.BAT < prev    next >
DOS Batch File  |  1992-02-02  |  540b  |  20 lines

  1. @ECHO OFF
  2. CLS
  3. ECHO This program will copy all of the files required for Micro-Mapper
  4. ECHO from the source %1 to the destination %2.
  5. ECHO If you did not enter the source or destination correctly, press
  6. ECHO CTRL and BREAK(pause) at the same time to halt execution.
  7. PAUSE
  8. @ECHO ON
  9. COPY %1\MAPPER.COM %2
  10. COPY %1\MAPPER.MNU %2
  11. COPY %1\MAPPER.CFG %2
  12. COPY %1\TBL.MEM %2
  13. COPY %1\COLOR1.MEM %2
  14. COPY %1\COLOR2.MEM %2
  15. COPY %1\DANSI.COM %2
  16. COPY %1\DASCII.COM %2
  17. COPY %1\DMEM.COM %2
  18. COPY %1\DWCAT3.COM %2
  19. ECHO The copy is complete.
  20.